home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 1997 March & April
/
Amiga-CD 1997 #3-4.iso
/
tools
/
delitracker
/
files
/
arexx.lzx
/
Arexx
/
dt_songend.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2016-02-11
|
217b
|
19 lines
/* DeliTracker - toggles songend */
address 'DELITRACKER'
options results
status G end
if result == "no" then do
SongEnd yes
say "Songend is now on..."
end
else do
SongEnd no
say "Songend is now off..."
end